

/*å…¶ä»–*/
.overflow-hidden { overflow: hidden;} /*è‡ªåŠ¨æˆªå–è¶…å‡ºåŽçš„å†…å®¹æˆ–åŒºåŸŸ*/
.visibility-hidden { visibility: hidden;} /*è®¾ç½®å…ƒç´ ä¸ºä¸å¯è§ï¼Œä½†è¿˜æ˜¯ä¼šå æ®åŽŸæœ‰ä½ç½®*/
.visibility-visible { visibility: visible;} /*è®¾ç½®å…ƒç´ ä¸ºå¯è§*/
.display-block { display: block;} /*è®¾ç½®å…ƒç´ ä¸ºå—çº§å¹¶æ˜¾ç¤º*/
.display-none { display: none;} /*è®¾ç½®å…ƒç´ ä¸ºéšè—*/
.display-inline { display: inline;} /*è®¾ç½®å…ƒç´ ä¸ºå†…è”*/
.display-inline-block { display: inline-block;} /*è®¾ç½®å…ƒç´ ä¸ºå†…è”å—çº§ï¼Œå…ƒç´ ä¼šå°½å¯èƒ½ç¼©å‡å ç”¨ç©ºé—´*/
.text-align-center { text-align: center;} /*æ–‡æœ¬å±…ä¸­*/
.text-align-left { text-align: left;} /*æ–‡æœ¬å·¦å¯¹é½*/
.text-align-right { text-align: right;} /*æ–‡æœ¬å³å¯¹é½*/
.font-weight-bold { font-weight: bold;} /*å­—ä½“åŠ ç²—*/
.font-weight-normal { font-weight: normal;} /*å­—ä½“ä¸åŠ ç²—*/
.cursor-pointer { cursor: pointer} /*å½“é¼ æ ‡ç»è¿‡å…ƒç´ çš„æ—¶å€™å‡ºçŽ°æ‰‹æŒ‡å½¢çŠ¶*/
.text-decoration-underline{ text-decoration: underline;} 

/*--------------------------------åŠ¨ç”»ã€è¿‡æ¸¡--------------------------------*/


/*é€šç”¨è¿‡åº¦*/
.transition {
	transition: all .25s linear;
}

/*é’ˆå¯¹å›¾ç‰‡-ç¼©æ”¾*/
.transition-img {
	transition: transform 0.25s linear;
}
.transition:hover .transition-img{
	transform:scale(1.07);
}

/*é’ˆå¯¹æ–‡å­—-å˜è‰²*/
.transition-color {
	transition: color 0.3s linear;
}
.transition:hover.transition-color,
.transition:hover .transition-color{
	color: #C1162A;
}
.transition:hover.color1,
.transition:hover .color1{
	color: #C1162A;
}

.transition:hover.color2,
.transition:hover .color2{
	color: #FFF;
}

/*é’ˆå¯¹æ–‡å­—-å˜èƒŒæ™¯*/
.transition-background {
	transition: background-color 0.3s linear;
}
.transition:hover.transition-background,
.transition:hover .transition-background{
	background-color: #293256;
}
.transition:hover.transition-background1,
.transition:hover .transition-background1{
	background-color: #293256;
}

/*--------------------------------/åŠ¨ç”»ã€è¿‡æ¸¡--------------------------------*/

/*ç›’å¸ƒå±€*/
.display-box {
	display: -webkit-box !important;
	display: -moz-box !important;
	display: -o-box !important;
	display: -ms-flexbox !important;
	display: box !important;	
}

.display-box2 {
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
}


/*åž‚ç›´æ–¹å‘-å±…ä¸­å¯¹å…¶*/
.box-align-center {
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	box-align: center;
}
.box-align-center>* {
	display: block;
}

/*åž‚ç›´æ–¹å‘-é¡¶éƒ¨å¯¹é½*/
.box-align-start {
	-moz-box-align: start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-o-box-align: start;
	box-align: start;
}

/*åž‚ç›´æ–¹å‘-åº•éƒ¨å¯¹é½*/
.box-align-end {
	-moz-box-align: end;
	-webkit-box-align: end;
	-o-box-align: end;
	-ms-flex-align: end;
	box-align: end;
}

/*æ°´å¹³æ–¹å‘-å±…ä¸­å¯¹é½*/
.box-pack-center {
	-moz-box-pack: center;
	-webkit-box-pack: center;
	-o-box-pack: center;
	-ms-flex-pack: center;
	box-pack: center;
}

/*æ°´å¹³æ–¹å‘-å·¦åˆ™å¯¹é½*/
.box-pack-start {
	-moz-box-pack: start;
	-webkit-box-pack: start;
	-o-box-pack: start;
	-ms-flex-pack: start;
	box-pack: start;
}

/*æ°´å¹³æ–¹å‘-å³åˆ™å¯¹é½*/
.box-pack-end {
	-moz-box-pack: end;
	-webkit-box-pack: end;
	-o-box-pack: end;
	-ms-flex-pack: end;
	box-pack: end;
}

/*è¾¹ç¼˜2ç«¯å¯¹é½*/
.display-flex-justify{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
		
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;	
}

/*è®¾ç½®å…ƒç´ ä¸ºå¯ä¼¸ç¼©*/
.box-flex {
	-moz-box-flex: 1;
	-webkit-box-flex: 1;
	-o-box-flex: 1;
	-ms-flex: 1;
	box-flex: 1;
}
.box-flex2 {
	-moz-box-flex: 0.1;
	-webkit-box-flex: 0.1;
	-o-box-flex: 0.1;
	-ms-flex: 0.1;
	box-flex: 0.1;
}

/*è§„å®šæ¡†ä¸­å­å…ƒç´ çš„æ˜¾ç¤ºæ¬¡åº-æ•°å­—å°çš„æŽ’å‰é¢*/
.box-ordinal-group1 {
	-moz-box-ordinal-group: 1;
	-webkit-box-ordinal-group: 1;
	-o-box-ordinal-group: 1;
	-ms-box-ordinal-group: 1;
	box-ordinal-group: 1;
}
.box-ordinal-group2 {
	-moz-box-ordinal-group: 2;
	-webkit-box-ordinal-group: 2;
	-o-box-ordinal-group: 2;
	-ms-box-ordinal-group: 2;
	box-ordinal-group: 2;
}
.box-ordinal-group3 {
	-moz-box-ordinal-group: 3;
	-webkit-box-ordinal-group: 3;
	-o-box-ordinal-group: 3;
	-ms-box-ordinal-group: 3;
	box-ordinal-group: 3;
}

/*æ”¹å˜å…ƒç´ çš„æŽ’åˆ—æ–¹å‘-åž‚ç›´æŽ’åˆ—*/
.box-orient-vertical {
	-moz-box-orient: vertical;
	-webkit-box-orient: vertical;
	-o-box-orient: vertical;
	-ms-box-orient: vertical;
	box-orient: vertical;
}

/*æ”¹å˜å…ƒç´ çš„æŽ’åˆ—æ–¹å‘-æ°´å¹³æŽ’åˆ—*/
.box-orient-vertical {
	-moz-box-orient: horizontal;
	-webkit-box-orient: horizontal;
	-o-box-orient: horizontal;
	-ms-box-orient: horizontal;
	box-orient: horizontal;
}

/*/ç›’å¸ƒå±€*/

/*å¤šè¡Œæ˜¾ç¤ºå¿½ç•¥å·*/
.line-clamp1{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 1;
}
.line-clamp2{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 2;
}
.line-clamp3{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 3;	
}
.line-clamp4{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 4;	
}
.line-clamp5{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: box;
  text-overflow: ellipsis;
	-webkit-box-orient: vertical;  
	overflow: hidden;	
	
	-webkit-line-clamp: 5;	
}
/*/å¤šè¡Œæ˜¾ç¤ºå¿½ç•¥å·*/

/*å®½é«˜è®¡ç®—*/
.width-calc1 {
	width: -moz-calc(100% - 40px);
	width: -webkit-calc(100% - 40px);
	width: -o-calc(100% - 40px);
	width: -ms-calc(100% - 40px);
	width: calc(100% - 40px);
}
.height-calc1 {
	height: -moz-calc(100% - 30px);
	height: -webkit-calc(100% - 30px);
	height: -o-calc(100% - 30px);
	height: -ms-calc(100% - 30px);
	height: calc(100% - 30px);
}

/*ä½ç½®åç§»*/
.transform1 {
	-moz-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.transform2 {
	-moz-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.transform3 {
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.transform4 {
	-moz-transform: translate(50%, 50%);
	-webkit-transform: translate(50%, 50%);
	-o-transform: translate(50%, 50%);
	-ms-transform: translate(50%, 50%);
	transform: translate(50%, 50%);
}

/*è®¾ç½®å…ƒç´ ä¸ºå†…è”å¿«çº§å¹¶åž‚ç›´å±…ä¸­å¯¹é½*/
.vertical-align-middle {
	vertical-align: middle;
}
.display-inline-block-middle {
	display-inline-block;
	vertical-align: middle;
}
.display-inline-block-align-q * {
	display-inline-block;
	vertical-align: middle;
}

/*æ”¹å˜placeholderè¾“å…¥æ¡†æç¤ºé¢œè‰²*/
.placeholder-color1:-moz-placeholder {
	color: #C6C6C6;
}
.placeholder-color1::-moz-placeholder {
	color: #C6C6C6;
}
.placeholder-color1:-ms-input-placeholder {
	color: #C6C6C6;
}
.placeholder-color1::-webkit-input-placeholder {
	color: #C6C6C6;
}
/*/é€šç”¨æ ·å¼*/


/*è®¾ç½®æµ®åŠ¨*/
.float-left { float: left;} /*è®¾ç½®å…ƒç´ å‘å·¦æµ®åŠ¨*/
.float-right { float: right;} /*è®¾ç½®å…ƒç´ å‘å³æµ®åŠ¨*/

/*æ¸…é™¤æµ®åŠ¨*/
.clear-left { clear: left;} /*å·¦ä¾§ä¸å…è®¸æµ®åŠ¨å…ƒç´ */
.clear-right { clear: right;} /*å³ä¾§ä¸å…è®¸æµ®åŠ¨å…ƒç´ */
.clear-both { clear: both;} /*å·¦å³ä¸¤ä¾§å‡ä¸å…è®¸æµ®åŠ¨å…ƒç´ */

body {
  background-color: #fff;
  font-family: "Microsoft Yahei", "arial";
  overflow-x: hidden;
}
a {
  text-decoration: none !important;
}
body > iframe {
  display: none;
}
.mobile-con {
  display: none;
}
@media (max-width: 768px) {
  .pc-con {
    display: none!important;
  }
  .mobile-con {
    display: block!important;
  }
}
.header {
  height: 90px;
  line-height: 90px;
  background: #1e1e1e;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  font-family: "Microsoft Yahei";
}
.header .wrap {
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.header .member {
  float: left;
  padding-left: 30px;
  background: url("../images/top-icon_03.jpg") no-repeat left center;
  text-transform: uppercase;
  color: #515151;
}
.header .member a {
  font-size: 1.2rem;
  color: #515151;
}
.header .member a:hover {
  color: #fff;
}
.header .nav-con {
  width: 805px;
  margin: 0 auto;
}
.navigation-up{
	margin-left: 80px;
}
@media (max-width: 1340px) {
  .header .nav-con {
    width: 800px;
  }
}
.header .nav-con #nav {
  width: 100%;
  text-align: center;
  margin: 0;
}
.header .nav-con #nav .sub-nav {
  text-align: center;
  position: relative;
  transition: 0.3s;
  width: 128px;
  margin: 0rem;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
@media (max-width: 1340px) {
  .header .nav-con #nav .sub-nav {
    width: auto;
    margin: 0 0.7rem;
  }
}
.header .nav-con #nav .sub-nav:hover a {
  color: #fff;
}
.header .nav-con #nav .sub-nav a {
  color: #FFF;
  font-size: 1.6rem;
  display: block;
  position: relative;
  transition: 0.3s;
  text-transform: uppercase;
}
.header .nav-con #nav .sub-nav:nth-child(1) {
  float: left;
}
.header .nav-con #nav .sub-nav:nth-child(2) {
  float: left;
}
.header .nav-con #nav .sub-nav:nth-child(3) {
  float: left;
}
.header .nav-con #nav .sub-nav:nth-child(4) {
  float: right;
}
.header .nav-con #nav .sub-nav:nth-child(5) {
  float: right;
}
.header .nav-con #nav .sub-nav:nth-child(6) {
  float: right;
}
.header .nav-con #nav .sub-nav:nth-child(4) {
  margin-left: 0;
}
.header .nav-con #nav .nav-up-selected a {
  color: #fff;
}
.header .navigation-down {
  position: absolute;
  top: 50px;
  left: 0px;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  font-family: 'PalatinoLinotype';
}
.header .nav-down-menu {
  padding: 3% 0;
}
.header .nav-down-menu .list {
  float: left;
}
.header .nav-down-menu .list li {
  font-size: 1.4rem;
  margin-bottom: 2%;
}
.header .nav-down-menu .list li a {
  color: #fff;
  transition: 0.2s;
  padding-left: 15px;
  background: url("../images/nav-angle_03.png") no-repeat left center;
}
.header .nav-down-menu .list li a:hover {
  transform: translate(5px, 0);
}
.header .nav-down-menu .img-box {
  float: none;
  line-height: normal;
  width: 65%;
  margin: 0 auto;
}
.header .nav-down-menu .img-box li {
  float: left;
  margin: 0 1.5% 0 0;
  text-align: center;
  width: 32.33333%;
}
.header .nav-down-menu .img-box li:hover .img img {
  transform: scale(1.1);
}
.header .nav-down-menu .img-box li .img {
  overflow: hidden;
}
.header .nav-down-menu .img-box li .img img {
  transition: 0.4s;
  width: 100%;
}
.header .nav-down-menu .img-box li p {
  font-size: 1.4rem;
  color: #a9a9a9;
  margin: 10px 0 0;
}
.header .nav-down-menu .img-box li:nth-child(3) {
  margin-right: 0;
}
.header .search {
  float: right;
  position: relative;
}
@media (max-width: 1115px) {
  .header .search {
    display: none;
  }
}
.header .search .txt {
  width: 180px;
  height: 35px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
}
@media (max-width: 1500px) {
  .header .search .txt {
    width: 128px;
  }
}
.header .search .submit {
  width: 35px;
  height: 35px;
  background: url("../images/top-icon_05.jpg") no-repeat center;
  position: absolute;
  top: 6px;
  right: 0;
  border: none;
}
.header .logo {
  position: absolute;
  line-height: normal;
  transform: translate(0%, -50%);
  left: 0%;
  top: 50%;
}
@media (max-width: 1340px) {
  .header .logo {
    left: 49%;
  }
}






.main #section0 {
  background-size: cover!important;
  background-attachment: fixed!important;
  top: 0;
  left: 0;
  position: relative;
}
@media (max-width: 1055px) {
  .main #section0 {
    height: 45vh!important;
  }
}
@media (max-width: 768px) {
  .main #section0 {
    height: 40vh!important;
  }
}
.main #section0 .slide {
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 100%;
  background-attachment: fixed!important;
}
@media (max-width: 1055px) {
  .main #section0 .slide .fp-tableCell {
    height: 45vh!important;
  }
}
@media (max-width: 768px) {
  .main #section0 .slide {
    background-size: contain!important;
  }
  .main #section0 .slide .fp-tableCell {
    height: 40vh!important;
  }
}
.main #section0 .fp-slidesContainer {
  width: 100%!important;
  transform: none!important;
}
.main #section0 .fp-slide {
  width: 100%!important;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: all 0.7s ease-in-out;
}
.main #section0 .fp-slide.active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.main #section0 .fp-controlArrow {
  border: none;
  width: 25px;
  height: 45px;
  cursor: pointer;
}
.main #section0 .fp-controlArrow {
  border: none;
  width: 25px;
  height: 45px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main #section0 .fp-controlArrow {
    display: none;
  }
}
.main #section0 .fp-controlArrow.fp-prev {
  left: 5%;
  background: url("../images/ad-btn_03.png") no-repeat center;
}
.main #section0 .fp-controlArrow.fp-next {
  right: 5%;
  background: url("../images/ad-btn_05.png") no-repeat center;
}
.main #section0 .arrow {
  display: block;
  position: absolute;
  bottom: 45px;
  left: 50%;
  margin-left: 0px;
  z-index: 99;
  opacity: .8;
  -webkit-animation: arrow 2.5s infinite ease-in-out;
}
@media (max-width: 768px) {
  .main #section0 .arrow {
    display: none;
  }
}
@-webkit-keyframes arrow {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(0, 10px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
  }
}
.main .index-tit {
  text-align: center;
  margin-bottom: 6%;
}
.main .index-tit h1 {
  font-size: 10rem;
  color: #f5f5f5;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 1800px) {
  .main .index-tit h1 {
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  .main .index-tit h1 {
    font-size: 5rem;
  }
}
.main .index-tit h4 {
  font-size: 3.6rem;
  color: #785a42;
  font-family: "å®‹ä½“";
  margin-top: -4.5%;
  font-weight: 600;
}
@media (max-width: 1800px) {
  .main .index-tit h4 {
    margin-top: -5.5%;
  }
}
@media (max-width: 768px) {
  .main .index-tit h4 {
    margin-top: -15.5%;
    font-size: 2.6rem;
  }
}
.main .index-tit b {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 20px;
  height: 1px;
  background: #785a40;
}
.main .room {
  position: relative;
  background-size: cover;
  background-position: center;
}
.main .room a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
@media (max-width: 1055px) {
  .main .room {
    height: 45vh!important;
  }
  .main .room .fp-tableCell {
    height: 45vh!important;
  }
}
@media (max-width: 768px) {
  .main .room {
    height: 38vh!important;
  }
  .main .room .fp-tableCell {
    height: 38vh!important;
  }
}
.main .room .name {
  width: 100%;
  position: absolute;
  bottom: 6%;
  z-index: 10;
  font-size: 3.6rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .main .room .name {
    font-size: 2.2rem;
  }
}
.main .about {
  padding: 5%  0;
}
.main .about .content .img {
  width: 44.2%;
  float: left;
}
@media (max-width: 768px) {
  .main .about .content .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.main .about .content .img img {
  width: 100%;
}
.main .about .content .txt {
  width: 51%;
  float: right;
}
@media (max-width: 768px) {
  .main .about .content .txt {
    width: 100%;
  }
}
.main .about .content .txt h6 {
  font-size: 1.8rem;
  color: #785a42;
  margin-bottom: 5%;
}
.main .about .content .txt p {
  font-size: 1.4rem;
  color: #666;
  line-height: 220%;
  margin-bottom: 3%;
}
.main .about .icon-box {
  margin-top: 10%;
  text-align: center;
}
@media (max-width: 1440px) {
  .main .about .icon-box {
    margin-top: 7%;
  }
}
.main .about .icon-box li {
  width: 16.6666666%;
  text-align: center;
  float: left;
}
@media (max-width: 768px) {
  .main .about .icon-box li {
    width: 50%;
    margin-bottom: 10px;
  }
}
.main .about .icon-box li p {
  font-size: 1.4rem;
  color: #474747;
  margin-top: 25px;
}
.main .case {
  padding: 3%  0;
  clear: both;
}
.main .case .index-tit {
  margin-bottom: 2.5%;
}
.main .case .case-nav {
  text-align: center;
  position: relative;
  z-index: 9;
  margin-bottom: 2%;
}
.main .case .case-nav li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  margin: 0 3rem;
}
@media (max-width: 768px) {
  .main .case .case-nav li {
    margin: 0 2rem;
  }
}
.main .case .case-nav li:after {
  content: '';
  position: absolute;
  right: -50px;
  top: 10px;
  width: 26px;
  height: 1px;
  background: #666;
}
.main .case .case-nav li a {
  font-size: 1.4rem;
  color: #666;
}
.main .case .case-nav li:last-child:after {
  display: none;
}
.main .case-con .content {
  position: relative;
  z-index: 9;
}
.main .case-con .content ul {
  margin: 0;
}
.main .case-con .content li {
  width: 50%;
  float: left;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main .case-con .content li {
    width: 100%;
  }
}
.main .case-con .content li:hover img {
  transform: scale(1.05);
}
.main .case-con .content li a {
  display: block;
}
.main .case-con .content li img {
  width: 100%;
  transition: 0.8s;
}
.main .case-con .content li .txt {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 100%;
}
.main .case-con .content li .txt h5 {
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  font-family: "å®‹ä½“";
}
@media (max-width: 768px) {
  .main .case-con .content li .txt h5 {
    font-size: 1.8rem;
  }
}
.main .case-con .content li .txt p {
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
}
.main .news {
  padding: 3% 0 0;
}
@media (max-width: 768px) {
  .main .news {
    height: auto!important;
    padding-bottom: 20px;
  }
}
.main .news .container {
  position: relative;
  z-index: 9;
}
.main .news .index-tit {
  margin-bottom: 2.5%;
}
.main .news .news-nav {
  text-align: center;
  position: relative;
  z-index: 9;
  margin-bottom: 2%;
}
.main .news .news-nav li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  margin: 0 3rem;
}
.main .news .news-nav li:after {
  content: '';
  position: absolute;
  right: -50px;
  top: 10px;
  width: 26px;
  height: 1px;
  background: #666;
}
.main .news .news-nav li a {
  font-size: 1.4rem;
  color: #666;
}
.main .news .news-nav li:last-child:after {
  display: none;
}
.main .news .content li {
  margin-bottom: 2%;
}
.main .news .content li .date {
  width: 14%;
  float: left;
  font-size: 1.8rem;
  color: #161616;
}
@media (max-width: 768px) {
  .main .news .content li .date {
    display: none;
  }
}
.main .news .content li .rt {
  width: 86%;
  float: right;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 2%;
}
@media (max-width: 768px) {
  .main .news .content li .rt {
    width: 100%;
  }
}
.main .news .content li .rt .txt {
  width: 37.7%;
  float: left;
  font-family: "å®‹ä½“";
}
@media (max-width: 768px) {
  .main .news .content li .rt .txt {
    width: 100%;
  }
}
.main .news .content li .rt .txt h6 {
  font-size: 2rem;
  color: #474747;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .main .news .content li .rt .txt h6 {
    font-size: 1.8rem;
  }
}
.main .news .content li .rt .txt p {
  font-size: 1.4rem;
  color: #666;
  margin: 4% 0;
  line-height: 200%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -moz-line-clamp: 2;
  -o-line-clamp: 2;
}
.main .news .content li .rt .txt span {
  font-size: 1.4rem;
  color: #747474;
  text-transform: uppercase;
}
.main .news .content li .rt .img {
  width: 35%;
  float: right;
}
@media (max-width: 768px) {
  .main .news .content li .rt .img {
    display: none;
  }
}
.main .news .content li .rt .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .main .bot-img {
    background-size: cover;
    height: auto!important;
    padding-bottom: 30px;
  }
}
.main .bot-img .container2 {
  position: relative;
  z-index: 9;
}
.main .bot-img .bot-tit {
  padding-top: 13%;
  margin-bottom: 2%;
}
.main .bot-img .bot-tit h5 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 600;
  font-family: "å®‹ä½“";
}
@media (max-width: 768px) {
  .main .bot-img .bot-tit h5 {
    font-size: 2rem;
  }
}
.main .bot-img .bot-tit p {
  font-size: 1.4rem;
  color: #fff;
}
.main .bot-img .list li {
  float: left;
  width: 318px;
  height: 200px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 37px 29px 0;
  position: relative;
  transition: 0.3s;
  padding: 35px;
  color: #fff;
}
@media (max-width: 768px) {
  .main .bot-img .list li {
    float: none;
    height: 150px;
    padding: 15px;
    margin: 0 37px 15px 0;
  }
}
.main .bot-img .list li:hover {
  background: rgba(120, 90, 66, 0.7);
  border-color: #785a42;
}
.main .bot-img .list li:hover img {
  opacity: 1;
}
.main .bot-img .list li h6 {
  font-size: 1.9rem;
}
.main .bot-img .list li p {
  font-size: 1.4rem;
  line-height: 200%;
  margin-right: 10%;
}
.main .bot-img .list li img {
  position: absolute;
  bottom: 25px;
  right: 30px;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .main .bot-img .list li img {
    display: none;
  }
}
.main .contact {
  padding: 3% 0 0;
}
.main .contact .index-tit {
  margin-bottom: 2.5%;
}
.main .contact .contact-nav {
  text-align: center;
  position: relative;
  z-index: 9;
  margin-bottom: 2%;
}
.main .contact .contact-nav li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  margin: 0 3rem;
}
.main .contact .contact-nav li:after {
  content: '';
  position: absolute;
  right: -50px;
  top: 10px;
  width: 26px;
  height: 1px;
  background: #666;
}
.main .contact .contact-nav li a {
  font-size: 1.4rem;
  color: #666;
}
.main .contact .contact-nav li:last-child:after {
  display: none;
}
.main .contact .list {
  border-bottom: 2px solid #eee;
  padding-bottom: 5%;
  margin-top: 6%;
}
.main .contact .list li {
  width: 25%;
  text-align: center;
  float: left;
}
@media (max-width: 768px) {
  .main .contact .list li {
    width: 50%;
  }
}
.main .contact .list li img {
  box-shadow: 5px 5px 20px #ececec;
  border-radius: 50%;
}
.main .contact .list li p {
  font-size: 1.4rem;
  color: #666;
  line-height: 180%;
  margin-top: 10%;
}
.main .contact .brand {
  padding: 4.5% 0;
}
.main .contact .brand .swiper-container-brand {
  overflow: hidden;
}
.main .contact .brand .swiper-container-brand .swiper-slide img {
  width: 100%;
}
.footer {
  background: #292a2e;
  padding: 4% 0;
}
.footer .container {
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .footer {
    height: auto!important;
    padding: 30px 0 20px;
  }
  .footer .fp-tableCell {
    height: auto!important;
  }
}
.footer .footer-top .footer-logo {
  text-align: center;
  margin-bottom: 4%;
}
.footer .footer-top .content {
  position: relative;
}
.footer .footer-top .content .link {
  float: left;
}
@media (max-width: 768px) {
  .footer .footer-top .content .link {
    width: 100%;
    margin: 15px 0;
    text-align: center;
  }
}
.footer .footer-top .content .link li {
  margin: 0 2.2rem;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
@media (max-width: 1440px) {
  .footer .footer-top .content .link li {
    margin: 0 2.2rem 0 0;
  }
}
@media (max-width: 768px) {
  .footer .footer-top .content .link li {
    margin: 0 1.5rem;
  }
}
.footer .footer-top .content .footer-nav {
  width: 100%;
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
@media (max-width: 768px) {
  .footer .footer-top .content .footer-nav {
    position: static;
    transform: translate(0%, 0%);
    left: 50%;
    top: 50%;
  }
}
.footer .footer-top .content .footer-nav li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 1.8rem;
}
@media (max-width: 768px) {
  .footer .footer-top .content .footer-nav li {
    margin-bottom: 12px;
  }
}
.footer .footer-top .content .footer-nav li a {
  font-size: 1.4rem;
  color: #cacaca;
}
.footer .footer-top .content .footer-nav li a:hover {
  color: #fff;
}
.footer .footer-top .content .form-box {
  float: right;
  position: relative;
}
@media (max-width: 768px) {
  .footer .footer-top .content .form-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .footer-top .content .form-box .txt {
  width: 270px;
  height: 45px;
  background: #34383b;
  padding: 0 10px;
  border: none;
  color: #cacaca;
}
@media (max-width: 1440px) {
  .footer .footer-top .content .form-box .txt {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .footer .footer-top .content .form-box .txt {
    width: 100%;
  }
}
.footer .footer-top .content .form-box .submit {
  position: absolute;
  width: 45px;
  height: 45px;
  border: none;
  cursor: pointer;
  background: url("../images/footer-email_03.jpg") no-repeat center;
  top: 0;
  right: 0;
}
.footer .footer-bot {
  margin-top: 4%;
  text-align: center;
  font-size: 1.4rem;
  color: #e2e2e2;
}
.footer .footer-bot a {
  color: #e2e2e2;
}
.bot-img:after,
.case-con:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  transition: 1s;
  background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0) 30%, rgba(30, 30, 30, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0) 30%, rgba(30, 30, 30, 0.5) 100%);
}
.bot-img:before,
.case-con:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  transition: 1s ease-in-out;
  background: #000000;
}
@media (max-width: 768px) {
  .bot-img:before,
  .case-con:before {
    display: none;
  }
}



.about:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  opacity: 1;
  transition: 1s ease-in-out;
  background: rgba(0, 0, 0, 0.7);
}

.active:before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 2;
    opacity: 0;
    transition: 1s ease-in-out;
}


.heigsret-nav .active:before {
   display: none;
}








@media (max-width: 768px) {
  .about:before {
    display: none;
  }
}
.active:after {
  opacity: 0.3;
  z-index: -1;
}
/*.active:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: 1s ease-in-out;
}*/
.returnTop {
  z-index: 99;
  display: block;
  cursor: pointer;
  position: fixed;
  bottom: 90px;
  right: 30px;
  opacity: 1;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  background: #757472;
}
.returnTop .arrow2 {
  display: block;
  position: absolute;
  bottom: 18px;
  left: 42%;
  margin-left: 0px;
  z-index: 99;
  opacity: .8;
  -webkit-animation: arrow2 1.5s infinite ease-in-out;
}
@-webkit-keyframes arrow2 {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(0, 5px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, 0px);
  }
}
.mobile-con .member {
  padding: 8px 0;
  text-align: center;
}
.mobile-con .member a {
  font-size: 1.2rem;
  color: #eee;
}
.mobile-con .member a:hover {
  color: #fff;
}
.mobile-con .navbar-default .navbar-nav > li > a:hover,
.mobile-con .navbar-default .navbar-nav > li > a:focus {
  color: #ffffff;
}
.mobile-con .navbar-default {
  background: rgba(27, 27, 27, 0.8);
}
.mobile-con .navbar-header .navbar-brand {
  float: none;
  line-height: 0;
  padding: 0;
}
.mobile-con .navbar-default .navbar-nav > li > a {
  color: #eee;
}
.mobile-con .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  color: #eee;
}
.mobile-con .navbar-brand > img {
  margin: 17px 0 0 3%;
  display: inline-block;
  width: 130px;
}
.mobile-con .btn-default {
  margin-top: -3px;
}
.mobile-con .navbar-form .form-group {
  width: 78%;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.mobile-con .navbar-brand span {
  display: inline-block;
  position: absolute;
  left: 116px;
  top: 31px;
  font-size: 16px;
  color: #333;
}
.mobile-con .navbar-form {
  margin-top: -1px;
  padding: 10px 15px 5px;
}
.mobile-con .nivo-directionNav {
  display: none;
}
.mobile-con .box .nivo-controlNav {
  margin-left: -16px;
  bottom: -6px;
}
.mobile-con .nivo-controlNav a {
  width: 6px;
  height: 6px;
  margin: 0 3px;
}
.mobile-con .navbar-toggle {
  margin-top: 11px;
}
.mobile-con .language {
  display: inline-block;
  position: relative;
  margin: 17px 12px 0 0;
  float: right;
  color: #333;
}
.mobile-con .language a {
  font-size: 14px;
  padding: 0px 6px;
  color: #333;
}
.mobile-con .language a:hover {
  color: #e75424;
}
.mobile-con .language .active {
  color: #e75424;
}
.mobile-con .dropdown .txt {
  margin-left: 20px;
}
.mobile-con .dropdown .txt h6 {
  font-size: 14px;
}
.mobile-con .dropdown .txt a {
  font-size: 13px;
  display: inline-block;
  margin: 4px 12px;
  color: #666;
}
.mobile-con .dropdown .txt a:hover {
  color: #1b75cf;
}
.ins-main {
  font-family: "PalatinoLinotype", "Microsoft Yahei", "arial";
}
@media (max-width: 768px) {
  .ins-main {
    margin-top: 55px;
  }
}
.ins-main .ins-product .pro-top img {
  width: 100%;
}
.ins-main .ins-product .search-box {
  padding: 3% 0;
  font-family: "Microsoft Yahei";
}
.ins-main .ins-product .search-box select {
  float: left;
  width: 400px;
  height: 75px;
  border: 1px solid #e4e4e4;
  padding: 0 10px;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari å’Œ Chrome */

  background: url("../images/down_03.jpg") no-repeat 95% center;
  font-size: 1.4rem;
  color: #1e1e1e;
}
@media (max-width: 1460px) {
  .ins-main .ins-product .search-box select {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .ins-main .ins-product .search-box select {
    width: 100%;
    height: 50px;
  }
}
.ins-main .ins-product .search-box .search {
  float: right;
  position: relative;
}
@media (max-width: 768px) {
  .ins-main .ins-product .search-box .search {
    float: left;
    margin-top: 15px;
    width: 100%;
  }
}
.ins-main .ins-product .search-box .search .txt {
  width: 400px;
  height: 68px;
  border: 1px solid #e4e4e4;
  padding: 0 10px;
}
@media (max-width: 1460px) {
  .ins-main .ins-product .search-box .search .txt {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .ins-main .ins-product .search-box .search .txt {
    width: 100%;
    height: 50px;
  }
}
.ins-main .ins-product .search-box .search .submit {
  width: 68px;
  cursor: pointer;
  height: 68px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/search-btn_03.jpg") no-repeat center;
}
@media (max-width: 1460px) {
  .ins-main .ins-product .search-box .search .submit {
    width: 50px;
    height: 50px;
  }
}
.ins-main .ins-product .img-list {
  font-family: "Microsoft Yahei";
}
.ins-main .ins-product .img-list .img {
  position: relative;
}
.ins-main .ins-product .img-list .img img {
  width: 100%;
}
.ins-main .ins-product .img-list .img:hover:before {
  opacity: 0;
}
.ins-main .ins-product .img-list .img:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  transition: 1.5s;
}
@media (max-width: 768px) {
  .ins-main .ins-product .img-list .img:before {
    display: none;
  }
}
.ins-main .ins-product .img-list .img h5 {
  width: 100%;
  position: absolute;
  bottom: 6%;
  z-index: 9;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .ins-main .ins-product .img-list .img h5 {
    font-size: 2rem;
  }
}
.ins-main .pro-list {
  padding: 4% 0;
}
.ins-main .pro-list .pro-tit {
  padding-bottom: 2%;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  margin-bottom: 2%;
}
.ins-main .pro-list .pro-tit:before {
  content: "";
  width: 175px;
  height: 1px;
  background: #1e1e1e;
  left: 0;
  bottom: -1px;
  position: absolute;
  z-index: 2;
}
.ins-main .pro-list .pro-tit h5 {
  font-size: 2.4rem;
  color: #1c1c1c;
  float: left;
  line-height: 150%;
}
.ins-main .pro-list .pro-tit .search {
  float: right;
  position: relative;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .ins-main .pro-list .pro-tit .search {
    float: left;
    margin-top: 15px;
    width: 100%;
  }
}
.ins-main .pro-list .pro-tit .search .txt {
  width: 400px;
  height: 68px;
  border: 1px solid #e4e4e4;
  padding: 0 10px;
}
@media (max-width: 1460px) {
  .ins-main .pro-list .pro-tit .search .txt {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .ins-main .pro-list .pro-tit .search .txt {
    width: 100%;
    height: 50px;
  }
}
.ins-main .pro-list .pro-tit .search .submit {
  width: 68px;
  cursor: pointer;
  height: 68px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/search-btn_03.jpg") no-repeat center;
}
@media (max-width: 1460px) {
  .ins-main .pro-list .pro-tit .search .submit {
    width: 50px;
    height: 50px;
  }
}
.ins-main .pro-list li {
  width: 31.33333%;
  margin-right: 3%;
  float: left;
  margin-bottom: 2%;
}
@media (max-width: 768px) {
  .ins-main .pro-list li {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.ins-main .pro-list li:hover .img .masking {
  opacity: 1;
}
.ins-main .pro-list li .img {
  overflow: hidden;
  position: relative;
}
.ins-main .pro-list li .img img {
  width: 100%;
  transition: 0.4s;
}
.ins-main .pro-list li .img .masking {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  opacity: 0;
}
.ins-main .pro-list li p {
  font-size: 1.6rem;
  color: #1c1c1c;
  text-align: center;
  margin: 12px 0 0;
}
.ins-main .pro-list li:nth-child(3n+3) {
  margin-right: 0;
}
.ins-main .pro-list .more a {
  display: block;
  width: 315px;
  text-align: center;
  height: 70px;
  line-height: 70px;
  background: #1e1e1e;
  color: #fff;
  font-family: 'Microsoft Yahei';
  margin: 3% auto;
}
@media (max-width: 1460px) {
  .ins-main .pro-list .more a {
    width: 250px;
    height: 50px;
    line-height: 50px;
  }
}
.ins-main .product-show .pro-top {
  position: relative;
}
.ins-main .product-show .pro-top img {
  width: 100%;
}
.ins-main .product-show .pro-top h6 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  padding: 2.5rem 5rem;
  background: rgba(0, 0, 0, 0.5);
  font-size: 2.4rem;
  color: #fff;
}
@media (max-width: 768px) {
  .ins-main .product-show .pro-top h6 {
    font-size: 1.8rem;
    width: 70%;
    padding: 1.5rem 0;
  }
}
.ins-main .product-show .show-img {
  margin: 3% 0;
  position: relative;
}
.ins-main .product-show .show-img .swiper-container-pro {
  overflow: hidden;
}
.ins-main .product-show .show-img .swiper-slide {
  position: relative;
}
.ins-main .product-show .show-img .swiper-slide img {
  width: 100%;
}
.ins-main .product-show .show-img .swiper-slide:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.ins-main .product-show .show-img .swiper-slide-active:after {
  display: none;
}
.ins-main .product-show .show-img .swiper-button-prev-pro {
  position: absolute;
  left: 5%;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  z-index: 3;
}
.ins-main .product-show .show-img .swiper-button-next-pro {
  position: absolute;
  right: 5%;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  z-index: 3;
}
.ins-main .product-show .description .container {
  position: relative;
}
.ins-main .product-show .description .txt-box {
  width: 48%;
}
@media (max-width: 768px) {
  .ins-main .product-show .description .txt-box {
    width: 100%;
  }
}
.ins-main .product-show .description .txt-box h6 {
  font-size: 2.4rem;
  color: #1c1c1c;
}
.ins-main .product-show .description .txt-box .txt {
  margin: 6% 0;
}
.ins-main .product-show .description .txt-box .txt p {
  font-size: 1.4rem;
  color: #4a4a4a;
  margin-bottom: 3%;
  line-height: 220%;
}
.ins-main .product-show .description .txt-box a {
  border: 2px solid #4a4a4a;
  padding: 2rem 4rem;
  display: inline-block;
  font-size: 1.4rem;
  color: #1e1e1e;
  font-family: 'Microsoft Yahei';
}
@media (max-width: 768px) {
  .ins-main .product-show .description .txt-box a {
    padding: 1rem 2rem;
  }
}
.ins-main .product-show .description .img {
  width: 48%;
  position: absolute;
  transform: translate(4%, -50%);
  left: 50%;
  top: 50%;
}
@media (max-width: 768px) {
  .ins-main .product-show .description .img {
    width: 100%;
    transform: translate(0%, 0%);
    position: static;
  }
}
.ins-main .product-show .description .img img {
  width: 100%;
}
.ins-main .product-show .pro-list .pro-tit {
  padding-bottom: 2%;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  margin-bottom: 2%;
}
.ins-main .product-show .pro-list .pro-tit:before {
  content: "";
  width: 175px;
  height: 1px;
  background: #1e1e1e;
  left: 0;
  bottom: -1px;
  position: absolute;
  z-index: 2;
}
.ins-main .product-show .pro-list .pro-tit h5 {
  font-size: 2rem;
  color: #1c1c1c;
  float: left;
  line-height: 150%;
}
.ins-main .ins-contact .contact-top img {
  width: 100%;
}
.ins-main .ins-contact .content {
  padding: 3% 0 5%;
}
.ins-main .ins-contact .contact-tit {
  margin-bottom: 3%;
}
.ins-main .ins-contact .contact-tit h4 {
  font-size: 3.6rem;
  color: #1e1e1e;
  line-height: 150%;
}
@media (max-width: 768px) {
  .ins-main .ins-contact .contact-tit h4 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-contact .list-box {
  position: relative;
}
.ins-main .ins-contact .list-box .img {
  width: 50%;
}
@media (max-width: 768px) {
  .ins-main .ins-contact .list-box .img {
    width: 100%;
  }
}
.ins-main .ins-contact .list-box .img img {
  width: 100%;
}
.ins-main .ins-contact .list-box .list {
  width: 43.7%;
  position: absolute;
  transform: translate(13%, -50%);
  left: 50%;
  top: 50%;
}
@media (max-width: 768px) {
  .ins-main .ins-contact .list-box .list {
    width: 100%;
    position: static;
    transform: translate(0%, 0%);
  }
}
.ins-main .ins-contact .list-box .list h4 {
  font-size: 3.6rem;
  color: #1e1e1e;
  padding-bottom: 5%;
  position: relative;
  margin-bottom: 8%;
}
@media (max-width: 768px) {
  .ins-main .ins-contact .list-box .list h4 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-contact .list-box .list h4:after {
  content: '';
  width: 80px;
  height: 1px;
  background: #1e1e1e;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins-main .ins-contact .list-box .list li {
  padding-left: 55px;
  line-height: 180%;
  font-size: 1.6rem;
  color: #4a4a4a;
  margin-bottom: 4%;
}
@media (max-width: 768px) {
  .ins-main .ins-contact .list-box .list li {
    padding-left: 35px;
  }
}
.ins-main .ins-contact .list-box .list li:nth-child(1) {
  background: url("../images/contact-icon_03.jpg") no-repeat left center;
}
.ins-main .ins-contact .list-box .list li:nth-child(2) {
  background: url("../images/contact-icon_06.jpg") no-repeat left center;
}
.ins-main .ins-contact .list-box .list li:nth-child(3) {
  margin: 0;
  background: url("../images/contact-icon_08.jpg") no-repeat left 4px;
}
.ins-main .ins-contact .message {
  margin: 3% 0;
  padding: 3% 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.ins-main .ins-contact .message ul:nth-child(1) li {
  width: 31.333333%;
  float: left;
  margin-right: 3%;
  margin-bottom: 2.5%;
}
.ins-main .ins-contact .message ul:nth-child(1) li input {
  border: 1px solid #767676;
  padding: 0 15px;
  width: 100%;
  height: 70px;
}
.ins-main .ins-contact .message ul:nth-child(1) li textarea {
  border: 1px solid #767676;
  padding: 15px;
  width: 100%;
  height: 210px;
}
@media (max-width: 768px) {
  .ins-main .ins-contact .message ul:nth-child(1) li {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .ins-main .ins-contact .message ul:nth-child(1) li input {
    height: 50px;
  }
}
.ins-main .ins-contact .message ul:nth-child(1) li:nth-child(3) {
  margin-right: 0;
}
.ins-main .ins-contact .message ul:nth-child(1) li:nth-child(4) {
  margin-right: 0;
  width: 100%;
  margin-bottom: 2%;
}
.ins-main .ins-contact .message ul:nth-child(2) {
  clear: both;
}
.ins-main .ins-contact .message ul:nth-child(2) input {
  background: #1e1e1e;
  width: 31%;
  height: 70px;
  font-size: 1.6rem;
  line-height: 70px;
  border: none;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 768px) {
  .ins-main .ins-contact .message ul:nth-child(2) input {
    height: 50px;
    line-height: 50px;
  }
}
.ins-main .ins-contact .map .amap-copyright {
  display: none!important;
}
.ins-main .ins-contact .map .amap-logo {
  display: none!important;
}
.ins-main .ins-contact .map .my-map {
  margin: 0 auto;
  width: 100%;
  height: 600px;
}
@media (max-width: 1460px) {
  .ins-main .ins-contact .map .my-map {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .ins-main .ins-contact .map .my-map {
    height: 350px;
  }
}
.ins-main .ins-contact .map .my-map .icon {
  background: url(http://lbs.amap.com/console/public/show/marker.png) no-repeat;
}
.ins-main .ins-contact .map .my-map .icon-cir {
  height: 31px;
  width: 28px;
}
.ins-main .ins-contact .map .my-map .icon-cir-red {
  background-position: -11px -5px;
}
.ins-main .ins-contact .map .amap-container {
  height: 100%;
}
.ins-main .ins-news .news-top {
  position: relative;
  background: url("../images/news-bg_02.jpg") no-repeat center;
  background-size: cover;
}
.ins-main .ins-news .news-top .swiper-container-news {
  width: 68.75%;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ins-main .ins-news .news-top .swiper-container-news {
    width: 100%;
  }
}
.ins-main .ins-news .news-top .swiper-container-news .swiper-slide {
  position: relative;
}
.ins-main .ins-news .news-top .swiper-container-news .swiper-slide img {
  width: 100%;
}
.ins-main .ins-news .news-top .swiper-container-news .swiper-slide .txt {
  width: 50%;
  position: absolute;
  bottom: 2%;
  left: 3%;
}
.ins-main .ins-news .news-top .swiper-container-news .swiper-slide .txt h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.8rem;
  color: #fff;
}
.ins-main .ins-news .news-top .swiper-container-news .swiper-slide .txt p {
  font-size: 1.4rem;
  color: #b1b1b1;
}
.ins-main .ins-news .news-top .swiper-button-next-news,
.ins-main .ins-news .news-top .swiper-button-prev-news {
  cursor: pointer;
  width: 21px;
  height: 37px;
  position: absolute;
  top: 50%;
  margin-top: -16px;
}
.ins-main .ins-news .news-top .swiper-button-next-news {
  background: url("../images/pro-btn_05.png") no-repeat left center;
  right: 8%;
}
.ins-main .ins-news .news-top .swiper-button-next-news:hover {
  background: url("../images/pro-btn_05.png") no-repeat right center;
}
.ins-main .ins-news .news-top .swiper-button-prev-news {
  background: url("../images/pro-btn_03.png") no-repeat left center;
  left: 8%;
}
.ins-main .ins-news .news-top .swiper-button-prev-news:hover {
  background: url("../images/pro-btn_03.png") no-repeat right center;
}
.ins-main .ins-news .news-list {
  padding: 4% 0;
}
.ins-main .ins-news .news-list .news-tit {
  padding-bottom: 2%;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  margin-bottom: 2%;
}
.ins-main .ins-news .news-list .news-tit:before {
  content: "";
  width: 175px;
  height: 1px;
  background: #1e1e1e;
  left: 0;
  bottom: -1px;
  position: absolute;
  z-index: 2;
}
.ins-main .ins-news .news-list .news-tit h5 {
  font-size: 2.4rem;
  color: #1c1c1c;
  float: left;
  line-height: 150%;
}
.ins-main .ins-news .news-list .news-tit select {
  float: right;
  font-family: 'Microsoft Yahei';
  margin-top: 15px;
  width: 400px;
  height: 75px;
  border: 1px solid #e4e4e4;
  padding: 0 10px;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari å’Œ Chrome */

  background: url("../images/down_03.jpg") no-repeat 95% center;
  font-size: 1.4rem;
  color: #1e1e1e;
}
@media (max-width: 1460px) {
  .ins-main .ins-news .news-list .news-tit select {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .ins-main .ins-news .news-list .news-tit select {
    width: 100%;
    height: 50px;
  }
}
.ins-main .ins-news .news-list li {
  width: 31.33333%;
  margin-right: 3%;
  float: left;
  margin-bottom: 3%;
}
.ins-main .ins-news .news-list li a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .ins-main .ins-news .news-list li {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.ins-main .ins-news .news-list li:hover .img img {
  transform: scale(1.1);
}
.ins-main .ins-news .news-list li:hover .txt span {
  transition: 0.4s;
  width: 130px;
  text-align: center;
  background: #1b1b1b;
  color: #fff;
}
.ins-main .ins-news .news-list li .img {
  overflow: hidden;
}
.ins-main .ins-news .news-list li .img img {
  width: 100%;
  transition: 0.4s;
}
.ins-main .ins-news .news-list li .txt h6 {
  font-size: 1.4rem;
  color: #1e1e1e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 20px;
}
.ins-main .ins-news .news-list li .txt p {
  font-size: 1.4rem;
  color: #797979;
  line-height: 180%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -moz-line-clamp: 2;
  -o-line-clamp: 2;
  height: 50px;
}
.ins-main .ins-news .news-list li .txt span {
  display: block;
  height: 35px;
  line-height: 35px;
  font-size: 1.2rem;
  color: #1e1e1e;
  font-family: 'Microsoft Yahei';
}
.ins-main .ins-news .news-list li:nth-child(3n+3) {
  margin-right: 0;
}
.ins-main .ins-news .news-list .more a {
  display: block;
  width: 315px;
  text-align: center;
  height: 70px;
  line-height: 70px;
  background: #1e1e1e;
  color: #fff;
  font-family: 'Microsoft Yahei';
  margin: 3% auto;
}
@media (max-width: 1460px) {
  .ins-main .ins-news .news-list .more a {
    width: 250px;
    height: 50px;
    line-height: 50px;
  }
}
.ins-main .news-show {
  padding: 4% 0;
}
.ins-main .news-show .show-tit {
  border-bottom: 1px solid #eee;
}
.ins-main .news-show .show-tit h5 {
  font-size: 2.4rem;
  color: #171717;
  margin: 2% 0 1%;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ins-main .news-show .show-tit h5 {
    font-size: 2rem;
  }
}
.ins-main .news-show .show-tit p {
  font-size: 1.4rem;
  color: #b3b3b3;
  text-transform: uppercase;
}
.ins-main .news-show .content img {
  max-width: 100%!important;
  margin: 3% 0;
}
.ins-main .news-show .content p {
  text-align: left;
  font-size: 1.5rem;
  color: #515151;
  line-height: 180%;
  margin-bottom: 2%;
}
.ins-main .news-show .link {
  margin: 5% auto 0;
}
.ins-main .news-show .link p a {
  font-size: 1.4rem;
  color: #a8a8a8;
}
.ins-main .news-show .link p a:hover {
  color: #333;
}
.ins-main .ins-case .case-top {
  position: relative;
}
.ins-main .ins-case .case-top .swiper-container-case {
  overflow: hidden;
}
.ins-main .ins-case .case-top .swiper-container-case .swiper-slide {
  position: relative;
}
.ins-main .ins-case .case-top .swiper-container-case .swiper-slide img {
  width: 100%;
}
.ins-main .ins-case .case-top .swiper-container-case .swiper-slide .txt {
  width: 370px;
  padding: 20px;
  position: absolute;
  transform: translate(-100%, -50%);
  left: 50%;
  top: 50%;
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .ins-main .ins-case .case-top .swiper-container-case .swiper-slide .txt {
    width: 100%;
    position: static;
    transform: translate(0%, 0%);
  }
}
.ins-main .ins-case .case-top .swiper-container-case .swiper-slide .txt h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.8rem;
  color: #fff;
}
.ins-main .ins-case .case-top .swiper-container-case .swiper-slide .txt p {
  font-size: 1.4rem;
  color: #b1b1b1;
  margin: 25px 0 30px;
  line-height: 200%;
}
.ins-main .ins-case .case-top .swiper-container-case .swiper-slide .txt span {
  display: block;
  width: 150px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #fff;
  font-size: 12px;
  color: #333;
  font-family: 'Microsoft Yahei';
}
.ins-main .ins-case .case-top .swiper-button-next-case,
.ins-main .ins-case .case-top .swiper-button-prev-case {
  cursor: pointer;
  width: 21px;
  height: 37px;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  z-index: 6;
}
.ins-main .ins-case .case-top .swiper-button-next-case {
  background: url("../images/pro-btn_05.png") no-repeat left center;
  right: 8%;
}
.ins-main .ins-case .case-top .swiper-button-next-case:hover {
  background: url("../images/pro-btn_05.png") no-repeat right center;
}
.ins-main .ins-case .case-top .swiper-button-prev-case {
  background: url("../images/pro-btn_03.png") no-repeat left center;
  left: 8%;
}
.ins-main .ins-case .case-top .swiper-button-prev-case:hover {
  background: url("../images/pro-btn_03.png") no-repeat right center;
}
.ins-main .ins-case .classic-box {
  padding: 3% 0 1%;
}
.ins-main .ins-case .classic-box .top h5 {
  font-size: 2.4rem;
  color: #1c1c1c;
  float: left;
  line-height: 150%;
}
.ins-main .ins-case .classic-box .top .txt {
  width: 50%;
  float: right;
}
@media (max-width: 768px) {
  .ins-main .ins-case .classic-box .top .txt {
    width: 100%;
  }
}
.ins-main .ins-case .classic-box .top .txt h6 {
  font-size: 1.6rem;
  color: #1e1e1e;
  margin-bottom: 20px;
}
.ins-main .ins-case .classic-box .top .txt p {
  font-size: 1.4rem;
  color: #666;
  line-height: 180%;
}
.ins-main .ins-case .classic-box .img {
  margin-top: 3%;
}
.ins-main .ins-case .classic-box .img img {
  width: 100%;
}
.ins-main .ins-case .case-list {
  padding: 0 0 4%;
}
.ins-main .ins-case .case-list .search-box {
  padding: 3% 0;
  font-family: "Microsoft Yahei";
}
.ins-main .ins-case .case-list .search-box select {
  float: left;
  width: 400px;
  height: 75px;
  border: 1px solid #e4e4e4;
  padding: 0 10px;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari å’Œ Chrome */

  background: url("../images/down_03.jpg") no-repeat 95% center;
  font-size: 1.4rem;
  color: #1e1e1e;
}
@media (max-width: 1460px) {
  .ins-main .ins-case .case-list .search-box select {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .ins-main .ins-case .case-list .search-box select {
    width: 100%;
    height: 50px;
  }
}
.ins-main .ins-case .case-list .search-box .search {
  float: right;
  position: relative;
}
@media (max-width: 768px) {
  .ins-main .ins-case .case-list .search-box .search {
    float: left;
    margin-top: 15px;
    width: 100%;
  }
}
.ins-main .ins-case .case-list .search-box .search .txt {
  width: 400px;
  height: 68px;
  border: 1px solid #e4e4e4;
  padding: 0 10px;
}
@media (max-width: 1460px) {
  .ins-main .ins-case .case-list .search-box .search .txt {
    width: 300px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .ins-main .ins-case .case-list .search-box .search .txt {
    width: 100%;
    height: 50px;
  }
}
.ins-main .ins-case .case-list .search-box .search .submit {
  width: 68px;
  cursor: pointer;
  height: 68px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/search-btn_03.jpg") no-repeat center;
}
@media (max-width: 1460px) {
  .ins-main .ins-case .case-list .search-box .search .submit {
    width: 50px;
    height: 50px;
  }
}
.ins-main .ins-case .case-list li {
  width: 48%;
  margin-right: 4%;
  float: left;
  margin-bottom: 4%;
  position: relative;
}
.ins-main .ins-case .case-list li a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .ins-main .ins-case .case-list li {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.ins-main .ins-case .case-list li:hover .img:after {
  opacity: 0;
}
.ins-main .ins-case .case-list li:hover p {
  background: rgba(0, 0, 0, 0.7);
}
.ins-main .ins-case .case-list li .img {
  overflow: hidden;
  position: relative;
}
.ins-main .ins-case .case-list li .img img {
  width: 100%;
  transition: 0.4s;
}
.ins-main .ins-case .case-list li .img:after {
  content: '';
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}
.ins-main .ins-case .case-list li p {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 40%;
  text-align: center;
  z-index: 2;
  border: 1px solid #7c7977;
  padding: 1rem 0;
  transition: 0.4s;
  color: #fff;
  margin: 0;
  font-size: 1.7rem;
  font-family: 'Microsoft Yahei';
}
@media (max-width: 768px) {
  .ins-main .ins-case .case-list li p {
    width: 70%;
    font-size: 1.3rem;
  }
}
.ins-main .ins-case .case-list li:nth-child(2n+2) {
  margin-right: 0;
}
.ins-main .ins-about .about-top img {
  width: 100%;
}
.ins-main .ins-about .txt-box h4 {
  font-size: 2.4rem;
  color: #1c1c1c;
  line-height: 150%;
  margin-top: 3%;
}
.ins-main .ins-about .txt-box .txt {
  margin-top: 3%;
  width: 50%;
}
@media (max-width: 1460px) {
  .ins-main .ins-about .txt-box .txt {
    width: 70%;
  }
}
@media (max-width: 1200px) {
  .ins-main .ins-about .txt-box .txt {
    width: 100%;
  }
}
.ins-main .ins-about .txt-box .txt p {
  font-size: 1.4rem;
  color: #4b4b4b;
  line-height: 200%;
  margin-bottom: 3%;
}
.ins-main .ins-about .txt-box .img img {
  width: 100%;
}
.ins-main .ins-about .list-box {
  border: 1px solid #f0f0f0;
  float: right;
  margin: 5% 0;
}
.ins-main .ins-about .list-box li {
  float: left;
  text-align: center;
  transition: 0.4s;
  padding: 3rem 4rem;
}
@media (max-width: 1200px) {
  .ins-main .ins-about .list-box li {
    padding: 2.5rem 3rem;
  }
}
@media (max-width: 992px) {
  .ins-main .ins-about .list-box li {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .ins-main .ins-about .list-box li {
    width: 50%;
    float: left;
    text-align: center;
    padding: 1.5rem 0;
  }
}
.ins-main .ins-about .list-box li:hover {
  background: #1e1e1e;
}
.ins-main .ins-about .list-box li:hover h5 {
  color: #fff;
}
.ins-main .ins-about .list-box li:hover p {
  color: #fff;
}
.ins-main .ins-about .list-box li h5 {
  font-size: 3.6rem;
  color: #1e1e1e;
  font-family: 'PalatinoLinotype';
}
@media (max-width: 768px) {
  .ins-main .ins-about .list-box li h5 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-about .list-box li p {
  font-size: 1.4rem;
  color: #1e1e1e;
}
.ins-main .ins-about .brand .top-box .img {
  width: 50%;
  float: left;
}
.ins-main .ins-about .brand .top-box .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .ins-main .ins-about .brand .top-box .img {
    width: 100%;
  }
}
.ins-main .ins-about .brand .top-box .txt {
  width: 46%;
  float: right;
}
@media (max-width: 768px) {
  .ins-main .ins-about .brand .top-box .txt {
    width: 100%;
  }
}
.ins-main .ins-about .brand .top-box .txt h5 {
  font-size: 3.6rem;
  color: #1e1e1e;
  margin: 5% 0;
}
@media (max-width: 768px) {
  .ins-main .ins-about .brand .top-box .txt h5 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-about .brand .top-box .txt p {
  font-size: 1.4rem;
  color: #4b4b4b;
  line-height: 200%;
  margin-bottom: 3%;
}
.ins-main .ins-about .culture .img-top {
  margin: 5% 0;
}
.ins-main .ins-about .culture .img-top img {
  width: 100%;
}
.ins-main .ins-about .culture .txt-box {
  text-align: center;
}
@media (max-width: 768px) {
  .ins-main .ins-about .culture .txt-box {
    text-align: left;
  }
}
.ins-main .ins-about .culture .txt-box h5 {
  font-size: 3.6rem;
  color: #1e1e1e;
  margin: 0 0 3%;
}
@media (max-width: 768px) {
  .ins-main .ins-about .culture .txt-box h5 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-about .culture .txt-box .txt {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ins-main .ins-about .culture .txt-box .txt {
    width: 100%;
  }
}
.ins-main .ins-about .culture .txt-box .txt p {
  font-size: 1.4rem;
  color: #4b4b4b;
  line-height: 200%;
  margin-bottom: 3%;
}
.ins-main .ins-about .display .img-box li {
  position: relative;
  float: left;
  width: 32.5581395%;
  margin-bottom: 3%;
}
@media (max-width: 768px) {
  .ins-main .ins-about .display .img-box li {
    width: 100%;
  }
  .ins-main .ins-about .display .img-box li:after {
    opacity: 0;
  }
}
.ins-main .ins-about .display .img-box li:hover:after {
  opacity: 0;
}
.ins-main .ins-about .display .img-box li img {
  width: 100%;
}
.ins-main .ins-about .display .img-box li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.4s;
  width: 100%;
  height: 100%;
}
.ins-main .ins-about .display .img-box li:nth-child(2) {
  width: 63.953488%;
  float: right;
}
@media (max-width: 768px) {
  .ins-main .ins-about .display .img-box li:nth-child(2) {
    width: 100%;
  }
}
.ins-main .ins-about .display .img-box li:nth-child(3) {
  width: 63.953488%;
  float: left;
}
@media (max-width: 768px) {
  .ins-main .ins-about .display .img-box li:nth-child(3) {
    width: 100%;
  }
}
.ins-main .ins-about .display .img-box li:nth-child(4) {
  width: 32.5581395%;
  float: right;
}
@media (max-width: 768px) {
  .ins-main .ins-about .display .img-box li:nth-child(4) {
    width: 100%;
  }
}
.ins-main .ins-about .display .txt-box {
  text-align: center;
  margin: 4% 0;
  clear: both;
}
@media (max-width: 768px) {
  .ins-main .ins-about .display .txt-box {
    text-align: left;
  }
}
.ins-main .ins-about .display .txt-box .box-tit {
  margin-bottom: 3%;
}
.ins-main .ins-about .display .txt-box .box-tit h5 {
  font-size: 3.6rem;
  color: #1e1e1e;
}
@media (max-width: 768px) {
  .ins-main .ins-about .display .txt-box .box-tit h5 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-about .display .txt-box .box-tit p {
  font-size: 1.8rem;
  color: #050505;
}
.ins-main .ins-about .display .txt-box .txt {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ins-main .ins-about .display .txt-box .txt {
    width: 100%;
  }
}
.ins-main .ins-about .display .txt-box .txt p {
  font-size: 1.4rem;
  color: #4b4b4b;
  line-height: 200%;
  margin-bottom: 3%;
}
.ins-main .ins-about .honor {
  background: #eee;
  padding: 3% 0;
  text-align: center;
  position: relative;
}
.ins-main .ins-about .honor h5 {
  font-size: 3.6rem;
  color: #1e1e1e;
  margin-bottom: 3%;
}
@media (max-width: 768px) {
  .ins-main .ins-about .honor h5 {
    font-size: 2.5rem;
  }
}
.ins-main .ins-about .honor .swiper-container-honor {
  overflow: hidden;
}
.ins-main .ins-about .honor .swiper-container-honor .swiper-slide {
  position: relative;
  cursor: pointer;
}
.ins-main .ins-about .honor .swiper-container-honor .swiper-slide:hover .masking {
  opacity: 1;
}
.ins-main .ins-about .honor .swiper-container-honor .swiper-slide img {
  width: 100%;
}
.ins-main .ins-about .honor .swiper-container-honor .swiper-slide .masking {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s;
}
.ins-main .ins-about .honor .swiper-button-next4,
.ins-main .ins-about .honor .swiper-button-prev4 {
  cursor: pointer;
  position: absolute;
  width: 21px;
  height: 37px;
  top: 55%;
}
.ins-main .ins-about .honor .swiper-button-prev4 {
  background: url("../images/pro-btn_03.png") no-repeat left center;
  left: 3%;
}
.ins-main .ins-about .honor .swiper-button-next4 {
  background: url("../images/pro-btn_05.png") no-repeat left center;
  right: 3%;
}
.page-num {
  clear: both;
  text-align: center;
  vertical-align: middle;
  line-height: 20px;
  padding: 3% 0 3%;
}
.page-num span {
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin: 0 2px;
  background-color: #1b1b1b;
  color: #fff;
  font-size: 14px;
}
.page-num a {
  display: inline-block;
  padding: 0 12px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin: 0 2px;
  background-color: #f1f1f1;
  color: #333;
  font-size: 14px;
}
.page-num a:hover {
  color: #fff;
  border-color: #1b1b1b;
  background-color: #1b1b1b;
}
@media (max-width: 768px) {
  .page-num {
    clear: both;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    padding: 4% 0 4%;
  }
  .page-num span {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin: 0 2px;
    background-color: #1b1b1b;
    color: #fff;
    font-size: 14px;
    margin-bottom: 1%;
  }
  .page-num a {
    display: inline-block;
    padding: 0 12px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin: 0 2px;
    background-color: #f1f1f1;
    color: #333;
    font-size: 14px;
    margin-bottom: 1%;
  }
  .page-num a:hover {
    color: #fff;
    border-color: #1b1b1b;
    background-color: #1b1b1b;
  }
}
.gscz-search{
	border: 1px solid #e4e4e4;
	padding: 6px 8px;
	border-radius: 6px;
}

.placeholder-color1:-moz-placeholder {
	color: #C1C1C1;
}
.placeholder-color1::-moz-placeholder {
	color: #C1C1C1;
}
.placeholder-color1:-ms-input-placeholder {
	color: #C1C1C1;
}
.placeholder-color1::-webkit-input-placeholder {
	color: #C1C1C1;
}



			

			
			.heigsret {
				position: fixed;
				left: 0;
				top: 0;
				z-index: 500;
				width: 100%;
				height: auto;
				background-color: rgba(0, 0, 0, .5);
				padding: 15px 4.5%;
			}
			
			.heigsret-nav ul {
				overflow: hidden;
				padding: 0;
				margin: 0;
				padding-left: 1%;
			}
			
			.heigsret-nav ul li {
				float: left;
				margin-left: 3.1%;
			}
			
			.heigsret-nav ul li a {
				color: #FFF;
				font-size: 15px;
				font-weight: bold;
			}
			
			.heigsret-nav ul li a:hover {
				color: #A28063;
			}
			
			.gscz-search-text input {
				border: none;
				background-color: transparent;
				color: #FFF;
				font-size: 14px;
				padding-right: 15px;
			}
			
			.gscz-search-submit input {
				border: none;
				background: url(../images/ss.png) center center no-repeat;
				width: 20px;
				height: 20px;
				cursor: pointer;
				color: #FFF;
			}
			
			@media (max-width: 1220px) {
				.heigsret {
					display: none;
				}
			}
			/*å¤´éƒ¨-ç§»åŠ¨ç«¯*/
			
			@media (min-width: 1220px) {
				.header-wap {
					display: none;
				}
			}
			
			.header-wap-gao,
			.header-wap-baow {
				height: 60px;
				background-color: #FFF;
			}
			
			.header-wap-baow {
				padding: 0 15px;
				border-bottom: 1px solid #CBCBCB;
				position: fixed;
				left: 0;
				top: 0;
				z-index: 100;
				width: 100%;
			}
			
			.header-wap-logo a img {
				width: 124px;
			}
			
			.header-wap-ico-zk {
				display: block;
				width: 24px;
			}
			
			.header-wap-ico-gb {
				display: none;
				width: 26px;
			}
			
			.header-wap-zeten {
				position: fixed;
				width: 100%;
				left: 0;
				top: 60px;
				z-index: 99;
				background-color: #212125;
				height: calc(100% - 60px);
				padding: 15px 15px 35px;
				overflow-y: auto;
				display: none;
			}
			
			.header-wap-nav_kai ul li>a {
				color: #EAEAEA;
				font-weight: 100;
				font-size: 14px;
				border-bottom: 1px solid #2A2A2A;
				display: block;
				padding: 13px 15px;
				position: relative;
			}
			
			.header-wap-nav_kai ul li>a.header-wap-jt:after {
				content: "";
				position: absolute;
				right: 15px;
				top: 50%;
				margin-top: -3px;
				z-index: 1;
				width: 0;
				height: 0;
				overflow: hidden;
				border-left: 5px solid transparent;
				border-top: 5px solid #EAEAEA;
				border-bottom: 5px solid transparent;
				border-right: 5px solid transparent;
			}
			
			.header-wap-nav_kai ul li.on>a.header-wap-jt:after {
				border-top: 5px solid #EE7D01;
			}
			
			.header-wap-nav_kai ul li.on>a {
				color: #EE7D01;
			}
			
			.header-wap-ertdg {
				position: relative;
				right: 0px;
				padding-top: 0px;
				top: 0px;
				z-index: 1;
				width: 100%;
				display: none;
				border-bottom: 1px solid #2A2A2A;
			}
			
			.header-wap-ertdg dl {
				background-color: transparent;
				padding: 13px 0;
				padding-left: 0;
			}
			
			.header-wap-ertdg dl a {
				color: #EAEAEA;
				font-weight: 100;
				line-height: 24px;
				font-size: 13px;
				display: block;
				padding: 0 15px;
				padding-left: 30px;
				position: relative;
			}
			
			.header-wap-ertdg dl a:after {
				content: "";
				position: absolute;
				left: 15px;
				top: 50%;
				margin-top: -2px;
				z-index: 1;
				width: 4px;
				height: 4px;
				background-color: #EAEAEA;
				overflow: hidden;
				border-radius: 100px;
			}
			
			.header-wap-ertdg dl a:hover {
				color: #EE7D01;
			}
			
			.header-wap-ertdg dl a:hover:after {
				background-color: #EE7D01;
			}
			
			.header-wap-mfl {
				position: relative;
			}
			
			.header-wap-mfl:after {
				content: "";
				position: absolute;
				right: 15px;
				top: 50%;
				margin-top: -3px;
				z-index: 1;
				width: 0;
				height: 0;
				overflow: hidden;
				border-left: 5px solid #EAEAEA;
				border-top: 5px solid transparent;
				border-bottom: 5px solid transparent;
				border-right: 5px solid transparent;
			}
			
			.header-wap-dh {
				text-align: center;
				padding: 15px 0;
				margin-top: 15px;
			}
			
			.header-wap-dh-titx {
				padding-left: 10px;
			}
			
			.header-wap-dh-titx h5 {
				color: #EAEAEA;
				font-size: 15px;
			}
			
			.header-wap-dh-titx h6 {
				color: #EE7D01;
				font-size: 15px;
			}
			
			.header-wap-dsf a {
				margin-left: 7.5px;
				margin-right: 7.5px;
			}
			
			.sourtgcx {
				background-color: #FFF;
			}
			
			.sourtgcx-text input {
				height: 46px;
				padding: 0 12px;
				line-height: initial;
				display: block;
				width: 100%;
				background-color: #FFF;
				font-size: 14px;
				border: none;
			}
			
			.sourtgcx-submit input {
				width: 58px;
				height: 32px;
				font-size: 14px;
				color: #FFF;
				background-color: #EE7D01;
				border: none;
				cursor: pointer;
				transition: all 0.15s linear;
			}
			
			.search-submit input:hover input {
				background-color: #B05D01;
			}
			
			.sourtgcx-submit {
				padding-right: 8px;
			}
			
			.header-wap-nav_div {
				margin-top: 25px;
			}
			/*/å¤´éƒ¨-ç§»åŠ¨ç«¯*/
			




.guanrg {
  text-align: center;
  margin-bottom: 5%;
}
.guanrg h1 {
  color: #f5f5f5;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 3rem;
}
@media (max-width: 1800px) {
  .guanrg h1 {
    font-size: 3rem; 
  }
}
@media (max-width: 768px) {
  .guanrg h1 {
    font-size: 3rem;
  }
}
.guanrg h4 {
  font-size: 3.6rem;
  color: #FFF;
  font-family: "å®‹ä½“";
  font-weight: 600;
}
@media (max-width: 768px) {
  .guanrg h4 {
    font-size: 2.6rem;
  }
	.ditushr-stitd p  {
		display: none !important;
	}
}
.guanrg b {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 20px;
  height: 1px;
  background: #FFF;
}

@media (max-width: 1220px) {
	.guanrg h1 {
    /*font-size: 12px;*/
	}
	.guanrg h4 {
    /*font-size: 16px;*/
    margin-bottom: 0;
	}	
}	






/*å†…å®¹é¡µæ¨¡æ¿1*/
.news-show{
	padding-top: 70px;
	padding-bottom: 70px;
}	
.show-tit h5{
  font-size: 24px;
  color: #171717;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}	
.show-tit p {
  font-size: 14px;
  color: #b3b3b3;
  text-transform: uppercase;
  padding-top: 15px;
}
.show-tit {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.show-nanst{
	padding-top: 15px;
}
.show-nanst p {
  text-align: left;
  font-size: 15px;
  color: #515151;
  /*line-height: 2;
  margin-bottom: 2%;*/
}
.news-show .link {
  margin: 3.5% auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-show .link p {
  padding-top: 15px;
}
.news-show .link p a {
  font-size: 14px;
  color: #a8a8a8;
}
.news-show .link p a:hover{
	color: #C1162A;
}
.show-nanst img{
	display: block;
	padding-bottom: 10px;
	padding-top: 10px;
	max-width: 100%;
	margin: 0 auto;
}



@media (max-width: 767px) {
	.news-show {
    padding-top: 25px;
    padding-bottom: 50px;
	}	
	.show-tit h5{
		font-size: 20px;
	}
	.show-tit p{
		display: none;
	}
	.show-nanst img{
		padding-top: 0px;
		padding-bottom: 0;
		max-width: 100%;
		height: auto!important;
	}	
	.news-show .link p {
		margin-bottom: 0;
	}
}
/*/å†…å®¹é¡µæ¨¡æ¿1*/

.width-1280{
	width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1350px) {
	.width-1280{
		width: 1000px;
		padding-left: 15px;
		padding-right: 15px;
	}	
}

@media (max-width: 1074px) {
	.width-1400{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}	
	
	.width-1280{
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}		
	
}



/*------------------------------å†…é¡µ2------------------------------*/
.pc-slide{
	width: 47%;
	float: left;
}	
.pc-simerg{
	float: right;
	width: 49%;
}
.preview .swiper-slide img{
	display: block;
	width: 100%; 
	cursor: pointer;
}
.view .swiper-slide img{
	display: block;
	width: 100%; 
	cursor: pointer;
}
.preview{
	margin-top: 14px;
}
.pc-simerg-tit h5{
  font-size: 16px;
  color: #383838;
  margin: 3% 0;
}
.pc-simerg-txt{
	margin: 6% 0;
}
.pc-simerg-txt p {
  margin: 4px 0;
  line-height: 150%;
  font-size: 14px;
  color: #787878;
}
.kbrtga{
	padding: 2% 0;
}
.preview .swiper-slide{
	padding: 0 1px;
}
.preview .swiper-slide img {
  width: 100%;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 1px;
}
.preview .active-nav img {
  border: 1px solid #B8935A;
}
@media (max-width: 767px) {
	.pc-slide{
		float: none;
		width: 100%;
	}
	.pc-simerg{
		float: none;
		width: 100%;		
	}
	.pc-simerg-tit h5 {
    font-size: 22px;
    color: #B4843B;
    margin: 5% 0;
	}	
}
.nb-cpzxrg{
  margin: 4% 0;
  padding: 3% 0;
  border-top: 1px solid #eee;
}	
.nb-cpzxrg-tit{
  margin-bottom: 3%;
  border-bottom: 1px solid #eee;
}
.nb-cpzxrg-tit h5 {
  width: 150px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #B8935A;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}
.nb-cpzxrg-news{
	line-height: 1.75;
	font-size: 14px;
  color: #787878;
}
@media (max-width: 767px) {
	.nb-cpzxrg-tit h5{
	  width: 100px;
	  height: 40px;
	  line-height: 40px;
	  text-align: center;
	  background: #B4843B;
	  color: #fff;
	  font-size: 14px;
	}
	.nb-cpzxrg-news{
	  font-size: 13px;
	}
}
/*------------------------------/å†…é¡µ2------------------------------*/